mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
0215034f25
when they already rely on SRI hashes.
15 lines
343 B
Nix
15 lines
343 B
Nix
{ buildPythonPackage, fetchPypi, atpublic, zope_interface, nose2 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flufl.bounce";
|
|
version = "4.0";
|
|
|
|
buildInputs = [ nose2 ];
|
|
propagatedBuildInputs = [ atpublic zope_interface ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-JVBK65duwP5aGc1sQTo0EMtRT9zb3Kn5tdjTQ6hgODE=";
|
|
};
|
|
}
|