pyramid: 1.7 -> 1.9.1
This commit is contained in:
20
pkgs/development/python-modules/hupper/default.nix
Normal file
20
pkgs/development/python-modules/hupper/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ buildPythonPackage, fetchPypi, python
|
||||
, pytest, pytestcov, watchdog, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hupper";
|
||||
version = "1.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "02lj6kgaf9xpr0binxwac3gpdhljglyj9fr78s165jc7qd7mifdg";
|
||||
};
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
checkInputs = [ pytest pytestcov watchdog mock ];
|
||||
}
|
||||
Reference in New Issue
Block a user