python3Packages.pure-pcapy3: init at 1.0.1

This commit is contained in:
Elis Hirwing 2020-03-24 21:43:25 +01:00 committed by Matt Votava
parent d15d77abd3
commit 63e59c6d10
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pure-pcapy3";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "14panfklap6wwi9avw46gvd7wg9mkv9xbixvbvmi1m2adpqlb7mr";
};
meta = with stdenv.lib; {
description = "Pure Python reimplementation of pcapy. This package is API compatible and a drop-in replacement.";
homepage = "http://bitbucket.org/viraptor/pure-pcapy";
license = licenses.bsd2;
maintainers = with maintainers; [ etu ];
};
}

View file

@ -7446,6 +7446,8 @@ in {
pulp = callPackage ../development/python-modules/pulp { };
pure-pcapy3 = callPackage ../development/python-modules/pure-pcapy3 { };
behave = callPackage ../development/python-modules/behave { };
pyhamcrest = if isPy3k then