Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 23 lines 525 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "distlib"; 5 version = "0.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "08fyi2r246733vharl2yckw20rilci28r91mzrnnvcr638inw5if"; 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