34 lines
673 B
Nix
34 lines
673 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pyroute2-core
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyroute2-core";
|
|
version = "0.6.5";
|
|
|
|
src = fetchPypi {
|
|
pname = "pyroute2.core";
|
|
inherit version;
|
|
sha256 = "sha256-Jm10Dq5A+mTdBFQfAH0022ls7PMVTLpb4w+nWmfUOFI=";
|
|
};
|
|
|
|
# pyroute2 sub-modules have no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pr2modules.common"
|
|
"pr2modules.config"
|
|
"pr2modules.proxy"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Core module for pyroute2";
|
|
homepage = "https://github.com/svinota/pyroute2";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|