File tree Expand file tree Collapse file tree
development/python-modules/distlib Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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 { } ;
You can’t perform that action at this time.
0 commit comments