about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/nwdiag/default.nix
blob: c8147d9d9a4e2f9e0af045c1e3bf7448478d44fd (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
{ lib, fetchurl, buildPythonPackage, pep8, nose, unittest2, docutils
, blockdiag, setuptools
}:

buildPythonPackage rec {
  pname = "nwdiag";
  version = "2.0.0";

  src = fetchurl {
    url = "mirror://pypi/n/nwdiag/${pname}-${version}.tar.gz";
    sha256 = "1qkl1lq7cblr6fra2rjw3zlcccragp8384hpm4n7dkc5c3yzmmsw";
  };

  buildInputs = [ pep8 nose unittest2 docutils ];

  propagatedBuildInputs = [ blockdiag setuptools ];

  # tests fail
  doCheck = false;

  meta = with lib; {
    description = "Generate network-diagram image from spec-text file (similar to Graphviz)";
    homepage = "http://blockdiag.com/";
    license = licenses.asl20;
    platforms = platforms.unix;
    maintainers = with maintainers; [ bjornfor ];
  };
}