mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python.pkgs.apipkg: move to separate expression
This commit is contained in:
parent
8e1a2250e1
commit
4cae4418e9
2 changed files with 26 additions and 20 deletions
25
pkgs/development/python-modules/apipkg/default.nix
Normal file
25
pkgs/development/python-modules/apipkg/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "apipkg";
|
||||
version = "1.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6";
|
||||
};
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Namespace control and lazy-import mechanism";
|
||||
homepage = "http://bitbucket.org/hpk42/apipkg";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -552,26 +552,7 @@ in {
|
|||
ansible_2_2 = callPackage ../development/python-modules/ansible/2.2.nix {};
|
||||
ansible_2_3 = callPackage ../development/python-modules/ansible/2.3.nix {};
|
||||
|
||||
apipkg = buildPythonPackage rec {
|
||||
name = "apipkg-1.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/a/apipkg/${name}.tar.gz";
|
||||
sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Namespace control and lazy-import mechanism";
|
||||
homepage = "http://bitbucket.org/hpk42/apipkg";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
apipkg = callPackage ../development/python-modules/apipkg {};
|
||||
|
||||
appdirs = callPackage ../development/python-modules/appdirs { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue