My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/nosejs/default.nix

28 lines
510 B

{ 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;
};
}