nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy27
5, six
6, zope_testing
7}:
8
9buildPythonPackage rec {
10 pname = "manuel";
11 version = "1.11.2";
12 disabled = isPy27;
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "sha256-nJt3WMQ66oa3VlW5InJCzOea96Wf7WwxSbBp9WIfzqc=";
17 };
18
19 propagatedBuildInputs = [ six ];
20 checkInputs = [ zope_testing ];
21
22 meta = with lib; {
23 description = "A documentation builder";
24 homepage = "https://pypi.python.org/pypi/manuel";
25 license = licenses.zpl20;
26 };
27
28}