mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
Merge pull request #192121 from fabaff/atenpdu-bump
python310Packages.atenpdu: 0.3.4 -> 0.3.5
This commit is contained in:
commit
50de0c387d
@ -1,23 +1,34 @@
|
|||||||
{ lib
|
{ lib
|
||||||
|
, async-timeout
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pysnmp
|
, pysnmp
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "atenpdu";
|
pname = "atenpdu";
|
||||||
version = "0.3.4";
|
version = "0.3.5";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-vvq8InmJUgvm/PpvZutpsBR3Fj1gR+xrkgfEGlw04Ek=";
|
hash = "sha256-MGxlzAEcd2EzIjAjY7/1xg1ZQhyL7dcFmCzfY9+jGJ4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pysnmp ];
|
propagatedBuildInputs = [
|
||||||
|
async-timeout
|
||||||
|
pysnmp
|
||||||
|
];
|
||||||
|
|
||||||
# Project has no test
|
# Project has no test
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "atenpdu" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"atenpdu"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python interface to control ATEN PE PDUs";
|
description = "Python interface to control ATEN PE PDUs";
|
||||||
|
Loading…
Reference in New Issue
Block a user