python3Packages.ndspy: 4.0.0 -> 4.1.0

This commit is contained in:
Konrad Borowski 2023-08-07 18:19:04 +02:00
parent b367b9cf87
commit b4fa6048f8

View File

@ -1,14 +1,13 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, crcmod
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "ndspy";
version = "4.0.0";
version = "4.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -17,13 +16,9 @@ buildPythonPackage rec {
owner = "RoadrunnerWMC";
repo = pname;
rev = "v${version}";
sha256 = "0x3sp10had1mq192m7kgjivvs8kpjagxjgj9d4z95dfjhzzbjh70";
hash = "sha256-V7phRZCA0WbUpYLgS/4nJbje/JM61RksDUZQ2pnbQyU=";
};
propagatedBuildInputs = [
crcmod
];
nativeCheckInputs = [
pytestCheckHook
];