summary refs log tree commit diff
path: root/pkgs/development/python-modules/zbase32/default.nix
blob: a5002e80f4947e39e224b4d0b60e39d6d74a7699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, fetchPypi
, setuptoolsDarcs
, pyutil
}:

buildPythonPackage rec {
  pname = "zbase32";
  version = "1.1.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9b25c34ba586cbbad4517af516e723599a6f38fc560f4797855a5f3051e6422f";
  };

  # Tests require `pyutil' so disable them to avoid circular references.
  doCheck = false;

  propagatedBuildInputs = [ setuptoolsDarcs pyutil ];

  meta = with stdenv.lib; {
    description = "zbase32, a base32 encoder/decoder";
    homepage = https://pypi.python.org/pypi/zbase32;
    license = licenses.bsd0;
  };

}