nix-prefetch-github: init -> 1.3

This commit is contained in:
Sebastian Jordan
2018-04-20 11:32:29 +02:00
parent 101d1d118d
commit aca3198c70
3 changed files with 46 additions and 10 deletions

View File

@@ -1,28 +1,32 @@
{ buildPythonPackage
, fetchPypi
, lib
, attrs
, six
, attrs
, pytest
, testtools
}:
let
buildPythonPackage rec {
version = "0.11.0";
pname = "effect";
version = "0.11.0";
pname = "effect";
in
buildPythonPackage {
inherit version pname;
src = fetchPypi {
inherit pname version;
sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6";
};
checkInputs = [
pytest
testtools
];
propagatedBuildInputs = [
six
attrs
];
doCheck = false;
checkPhase = ''
pytest .
'';
meta = with lib; {
description = "pure effects for Python";
description = "Pure effects for Python";
homepage = https://github.com/python-effect/effect;
license = licenses.mit;
};