summary refs log tree commit diff
path: root/pkgs/development/python-modules/flufl/bounce.nix
blob: 7687c0980c7043def3a6d955cda4496515e4b3d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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;
    sha256 = "sha256-JVBK65duwP5aGc1sQTo0EMtRT9zb3Kn5tdjTQ6hgODE=";
  };
}