Merge pull request #165288 from fgaz/isso/0.12.6.1

isso: 0.12.5 -> 0.12.6.1
This commit is contained in:
davidak 2022-03-22 23:07:26 +01:00 committed by GitHub
commit 34718d6432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,13 +16,13 @@ in
with python3Packages; buildPythonApplication rec {
pname = "isso";
version = "0.12.5";
version = "0.12.6.1";
src = fetchFromGitHub {
owner = "posativ";
repo = pname;
rev = version;
sha256 = "12ccfba2kwbfm9h4zhlxrcigi98akbdm4qi89iglr4z53ygzpay5";
sha256 = "sha256-b2iJmOOsaI4lqJ5//jmHflXRx4yFDaAoKZixXoWIyZg=";
};
propagatedBuildInputs = [
@ -47,10 +47,13 @@ with python3Packages; buildPythonApplication rec {
make js
'';
checkInputs = [ nose ];
checkInputs = [
pytest
pytest-cov
];
checkPhase = ''
${python.interpreter} setup.py nosetests
pytest
'';
passthru.tests = { inherit (nixosTests) isso; };