e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
14 lines
343 B
Nix
14 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=";
|
|
};
|
|
}
|