nixpkgs/pkgs/development/python-modules/pyroute2/default.nix
R. RyanTM b08c3705c6 python37Packages.pyroute2: 0.5.3 -> 0.5.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pyroute2/versions
2019-03-11 12:51:36 -07:00

23 lines
515 B
Nix

{stdenv, buildPythonPackage, fetchPypi}:
buildPythonPackage rec {
pname = "pyroute2";
version = "0.5.4";
src = fetchPypi {
inherit pname version;
sha256 = "0w6z4j8l9898bj214v2mh7vx2g43j1b70ijjvc7q3316fscal469";
};
# requires root priviledges
doCheck = false;
meta = with stdenv.lib; {
description = "Python Netlink library";
homepage = https://github.com/svinota/pyroute2;
license = licenses.asl20;
maintainers = [maintainers.mic92];
platforms = platforms.unix;
};
}