Skip to content

Commit 132a9a0

Browse files
authored
Merge pull request #56980 from LnL7/python-distlib
pythonPackages.distlib: init at 0.2.8
2 parents aeb707d + f39dfdc commit 132a9a0

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{ stdenv, buildPythonPackage, fetchPypi }:
2+
3+
buildPythonPackage rec {
4+
pname = "distlib";
5+
version = "0.2.8";
6+
7+
src = fetchPypi {
8+
inherit pname version;
9+
sha256 = "068zqb3w7nyqiv2hpy0zcpz2xd6xwhq5chigqrp9h9zav7bpr5sp";
10+
extension = "zip";
11+
};
12+
13+
# Tests use pypi.org.
14+
doCheck = false;
15+
16+
meta = with stdenv.lib; {
17+
description = "Low-level components of distutils2/packaging";
18+
homepage = https://distlib.readthedocs.io;
19+
license = licenses.psfl;
20+
maintainers = with maintainers; [ lnl7 ];
21+
};
22+
}
23+

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,8 @@ in {
368368

369369
distorm3 = callPackage ../development/python-modules/distorm3 { };
370370

371+
distlib = callPackage ../development/python-modules/distlib { };
372+
371373
distributed = callPackage ../development/python-modules/distributed { };
372374

373375
docutils = callPackage ../development/python-modules/docutils { };

0 commit comments

Comments
 (0)