python.pkgs.backcall: init at 0.1.0

This commit is contained in:
Frederik Rietdijk 2018-04-05 20:53:45 +02:00
parent 9c8c8852e1
commit 828160d15e
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "backcall";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "38ecd85be2c1e78f77fd91700c76e14667dc21e2713b63876c0eb901196e01e4";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = {
description = "Specifications for callback functions passed in to an API";
homepage = https://github.com/takluyver/backcall;
license = lib.licenses.bsd3;
};
}

View file

@ -860,6 +860,8 @@ in {
};
};
backcall = callPackage ../development/python-modules/backcall { };
backports_abc = callPackage ../development/python-modules/backports_abc { };
backports_functools_lru_cache = callPackage ../development/python-modules/backports_functools_lru_cache { };