nixpkgs/pkgs/development/python-modules/zbase32/default.nix

29 lines
596 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, setuptoolsDarcs
2018-11-24 13:23:47 +00:00
, pyutil
}:
buildPythonPackage rec {
pname = "zbase32";
2018-11-04 10:35:22 +00:00
version = "1.1.5";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:22 +00:00
sha256 = "9b25c34ba586cbbad4517af516e723599a6f38fc560f4797855a5f3051e6422f";
};
# Tests require `pyutil' so disable them to avoid circular references.
doCheck = false;
2018-11-24 13:23:47 +00:00
propagatedBuildInputs = [ setuptoolsDarcs pyutil ];
meta = with stdenv.lib; {
description = "zbase32, a base32 encoder/decoder";
homepage = https://pypi.python.org/pypi/zbase32;
license = licenses.bsd0;
};
}