mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
29 lines
742 B
Nix
29 lines
742 B
Nix
{ stdenv, 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 stdenv.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 ];
|
|
};
|
|
}
|