Files
nixpkgs/pkgs/development/python-modules/pure-pcapy3/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

35 lines
762 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pure-pcapy3";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-uZ5F8W1K1BDrXrvH1dOeNT1+2n6G8K1S5NxcRaez6pI=";
};
# fixes: AttributeError: 'FixupTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
postPatch = ''
substituteInPlace test/__init__.py \
--replace-fail "assertEquals" "assertEqual"
'';
pythonImportsCheck = [ "pure_pcapy" ];
meta = with lib; {
description = "Reimplementation of pcapy";
homepage = "https://github.com/rcloran/pure-pcapy-3";
license = licenses.bsd2;
maintainers = [ ];
};
}