pythonPackages.zake: refactor move to python-modules
This commit is contained in:
parent
aecd6aeb11
commit
ee6b3076e4
2 changed files with 32 additions and 19 deletions
31
pkgs/development/python-modules/zake/default.nix
Normal file
31
pkgs/development/python-modules/zake/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, kazoo
|
||||
, six
|
||||
, testtools
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zake";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ kazoo six ];
|
||||
buildInputs = [ testtools ];
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover zake/tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/yahoo/Zake";
|
||||
description = "A python package that works to provide a nice set of testing utilities for the kazoo library";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
|
||||
}
|
|
@ -3029,25 +3029,7 @@ in {
|
|||
|
||||
WSME = callPackage ../development/python-modules/WSME { };
|
||||
|
||||
zake = buildPythonPackage rec {
|
||||
name = "zake-${version}";
|
||||
version = "0.2.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/z/zake/${name}.tar.gz";
|
||||
sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ kazoo six ];
|
||||
buildInputs = with self; [ testtools ];
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover zake/tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/yahoo/Zake";
|
||||
};
|
||||
};
|
||||
zake = callPackage ../development/python-modules/zake { };
|
||||
|
||||
kazoo = buildPythonPackage rec {
|
||||
name = "kazoo-${version}";
|
||||
|
|
Loading…
Reference in a new issue