nixpkgs/pkgs/development/python-modules/nosejs/default.nix
2021-01-25 18:31:47 +01:00

29 lines
510 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "NoseJS";
version = "0.9.4";
src = fetchPypi {
inherit pname version;
sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests -v
'';
meta = with lib; {
homepage = "https://pypi.org/project/NoseJS/";
description = "A Nose plugin for integrating JavaScript tests into a Python test suite";
license = licenses.free;
};
}