Merge pull request #125587 from fabaff/bump-icmplib

python3Packages.icmplib: 2.1.1 -> 3.0.0
This commit is contained in:
Sandro 2021-06-06 01:44:34 +02:00 committed by GitHub
commit 8b0cb6f095
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,24 +4,22 @@
, pbr
, pythonOlder
, requests
, six
}:
buildPythonPackage rec {
pname = "icmplib";
version = "2.1.1";
disabled = pythonOlder "3.6";
version = "3.0.0";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ValentinBELYN";
repo = pname;
rev = "v${version}";
sha256 = "06xx9854yzxa7x1mjfzbhhw5rfzgjnw269j5k0rshyqh3qvw1nwv";
sha256 = "sha256-i5cmL8kOrehldOwX2RfVAfL4HdzJ+9S3BojJI2raUSA=";
};
propagatedBuildInputs = [
pbr
six
requests
];