mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python: several fixes
This commit is contained in:
parent
e1520f85fd
commit
bf3ac49bd2
1 changed files with 14 additions and 3 deletions
|
@ -1036,6 +1036,9 @@ let
|
|||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ iElectric ];
|
||||
};
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
});
|
||||
|
||||
beaker = buildPythonPackage rec {
|
||||
|
@ -2976,7 +2979,8 @@ let
|
|||
url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz";
|
||||
sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278";
|
||||
};
|
||||
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ];
|
||||
|
||||
meta = {
|
||||
|
@ -6150,6 +6154,8 @@ let
|
|||
description = "Add options to doctest examples while they are running";
|
||||
homepage = http://pypi.python.org/pypi/dtopt;
|
||||
};
|
||||
# Test contain Python 2 print
|
||||
disabled = isPy3k;
|
||||
};
|
||||
|
||||
|
||||
|
@ -7701,6 +7707,8 @@ let
|
|||
sha256 = "3a0624a251a26463c9dfa0ffa635ec51c4265380980d9a50d65611c3c2bd82a6";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest ];
|
||||
|
||||
meta = {
|
||||
description = "Vestigial utilities from IPython";
|
||||
homepage = http://ipython.org/;
|
||||
|
@ -11768,6 +11776,7 @@ let
|
|||
url = "https://github.com/GreenSteam/pep257/archive/${version}.tar.gz";
|
||||
sha256 = "0v8aq0xzsa7clazszxl42904c3jpq69lg8a5hg754bqcqf72hfrn";
|
||||
};
|
||||
buildInputs = with self; [ pytest ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/GreenSteam/pep257/;
|
||||
|
@ -13114,7 +13123,7 @@ let
|
|||
md5 = "861664f8be3bed44820356539f2ea5b6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ ];
|
||||
buildInputs = with self; [ nose ];
|
||||
|
||||
meta = {
|
||||
description = "Pure Python GeoIP API";
|
||||
|
@ -14010,6 +14019,8 @@ let
|
|||
md5 = "c57cba33626ac4b1e3d1974923d59232";
|
||||
};
|
||||
|
||||
disabled = isPy3k;
|
||||
|
||||
meta = {
|
||||
homepage = "https://code.google.com/p/pysphere/";
|
||||
license = "BSD";
|
||||
|
@ -16851,7 +16862,7 @@ let
|
|||
sha256 = "0skzrvhjnnacrz52jml4i050vdx5lfcd3np172srxjaghdgfxg9k";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ six ];
|
||||
propagatedBuildInputs = with self; [ six pillow ];
|
||||
|
||||
meta = {
|
||||
description = "Quick Response code generation for Python";
|
||||
|
|
Loading…
Reference in a new issue