depot/third_party/nixpkgs/pkgs/development/python-modules/pyroute2-ipdb/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

39 lines
747 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pyroute2-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyroute2-ipdb";
version = "0.6.13";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "pyroute2.ipdb";
inherit version;
hash = "sha256-u7u3XRO+luRUnPcOuU/XCy4XNuowGsa2g/VqoazYTVo=";
};
propagatedBuildInputs = [
pyroute2-core
];
# pyroute2 sub-modules have no tests
doCheck = false;
pythonImportsCheck = [
"pr2modules.ipdb"
];
meta = with lib; {
description = "Ipdb module for pyroute2";
homepage = "https://github.com/svinota/pyroute2";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
platforms = platforms.unix;
};
}