mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python.pkgs.vine: move to separate expression
This commit is contained in:
parent
2857dbd497
commit
4546623b37
2 changed files with 27 additions and 24 deletions
23
pkgs/development/python-modules/vine/default.nix
Normal file
23
pkgs/development/python-modules/vine/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, case, pytest, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "vine";
|
||||
version = "1.1.3";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
disable = pythonOlder "2.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0h94x9mc9bspg23lb1f73h7smdzc39ps7z7sm0q38ds9jahmvfc7";
|
||||
};
|
||||
|
||||
buildInputs = [ case pytest ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python promises";
|
||||
homepage = https://github.com/celery/vine;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -30030,25 +30030,7 @@ EOF
|
|||
|
||||
uranium = callPackage ../development/python-modules/uranium { };
|
||||
|
||||
vine = buildPythonPackage rec {
|
||||
name = "vine-${version}";
|
||||
version = "1.1.3";
|
||||
|
||||
disable = pythonOlder "2.7";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/v/vine/${name}.tar.gz";
|
||||
sha256 = "0h94x9mc9bspg23lb1f73h7smdzc39ps7z7sm0q38ds9jahmvfc7";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ case pytest ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/celery/vine;
|
||||
description = "python promises";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
};
|
||||
vine = callPackage ../development/python-modules/vine { };
|
||||
|
||||
wp_export_parser = buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
|
@ -30062,13 +30044,11 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
wptserve = callPackage ../development/python-modules/wptserve {};
|
||||
wptserve = callPackage ../development/python-modules/wptserve { };
|
||||
|
||||
yenc = callPackage ../development/python-modules/yenc {
|
||||
};
|
||||
yenc = callPackage ../development/python-modules/yenc { };
|
||||
|
||||
zeep = callPackage ../development/python-modules/zeep {
|
||||
};
|
||||
zeep = callPackage ../development/python-modules/zeep { };
|
||||
|
||||
zeitgeist = if isPy3k then throw "zeitgeist not supported for interpreter ${python.executable}" else
|
||||
(pkgs.zeitgeist.override{python2Packages=self;}).py;
|
||||
|
|
Loading…
Reference in a new issue