pythonPackages.bacpypes: 0.18.1 -> 0.18.4
This commit is contained in:
parent
422e6e5449
commit
872992ffce
1 changed files with 4 additions and 3 deletions
|
@ -1,15 +1,16 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, fetchFromGitHub
|
{ lib, buildPythonPackage, fetchPypi, fetchFromGitHub
|
||||||
, wheel, pytestCheckHook, pytestrunner }:
|
, wheel, pytestCheckHook, pytestrunner, pythonAtLeast }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "0.18.1";
|
version = "0.18.4";
|
||||||
pname = "bacpypes";
|
pname = "bacpypes";
|
||||||
|
disabled = pythonAtLeast "3.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "JoelBender";
|
owner = "JoelBender";
|
||||||
repo = "bacpypes";
|
repo = "bacpypes";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1fxrh57z3fjl95db8jh71grkv5id8qk65g6k5jqcs9v3dgkg8jkl";
|
sha256 = "1z5v0i7ms8na062wxd5ki43yy5z2d9cns0p4vdmkx2drwsbzlav2";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ wheel ];
|
propagatedBuildInputs = [ wheel ];
|
||||||
|
|
Loading…
Reference in a new issue