nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "distlib";
5 version = "0.3.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579";
10 extension = "zip";
11 };
12
13 # Tests use pypi.org.
14 doCheck = false;
15
16 meta = with 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