mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
31 lines
774 B
Nix
31 lines
774 B
Nix
{ buildPythonPackage, fetchPypi, fetchpatch
|
|
, plaster, PasteDeploy
|
|
, pytest, pytest-cov
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plaster_pastedeploy";
|
|
version = "0.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c231130cb86ae414084008fe1d1797db7e61dc5eaafb5e755de21387c27c6fae";
|
|
};
|
|
|
|
patches = [
|
|
# Fix tests compatibility with PasteDeploy 2+
|
|
# https://github.com/Pylons/plaster_pastedeploy/pull/17
|
|
(fetchpatch {
|
|
url = "https://github.com/Pylons/plaster_pastedeploy/commit/d77d81a57e917c67a20332beca8f418651172905.patch";
|
|
sha256 = "0n5vnqn8kad41kn9grcwiic6c6rhvy1ji3w81s2v9xyk0bd9yryf";
|
|
})
|
|
];
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
propagatedBuildInputs = [ plaster PasteDeploy ];
|
|
checkInputs = [ pytest pytest-cov ];
|
|
}
|