python3Packages.ndspy: 3.0.0 -> 4.0.0
This commit is contained in:
parent
4a876c1353
commit
b3559b7817
1 changed files with 9 additions and 8 deletions
|
@ -1,18 +1,19 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, crcmod }:
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, crcmod, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ndspy";
|
||||
version = "3.0.0";
|
||||
version = "4.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1s0i81gspas22bjwk9vhy3x5sw1svyybk7c2j1ixc77drr9ym20a";
|
||||
src = fetchFromGitHub {
|
||||
owner = "RoadrunnerWMC";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0x3sp10had1mq192m7kgjivvs8kpjagxjgj9d4z95dfjhzzbjh70";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ crcmod ];
|
||||
|
||||
doCheck = false; # there are no tests
|
||||
pythonImportsCheck = [ "ndspy" ];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
preCheck = "cd tests";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/RoadrunnerWMC/ndspy";
|
||||
|
|
Loading…
Reference in a new issue