mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
commit
8270a5f0eb
@ -8,11 +8,11 @@ let
|
||||
|
||||
majorVersion = "2.4";
|
||||
version = "${majorVersion}.0";
|
||||
pythonVersion = "2.7";
|
||||
libPrefix = "pypy${majorVersion}";
|
||||
|
||||
pypy = stdenv.mkDerivation rec {
|
||||
name = "pypy-${version}";
|
||||
pythonVersion = "2.7";
|
||||
|
||||
inherit majorVersion version;
|
||||
|
||||
|
@ -56,6 +56,7 @@ let
|
||||
# external dependencies.
|
||||
python = stdenv.mkDerivation {
|
||||
name = "python${if includeModules then "" else "-minimal"}-${version}";
|
||||
pythonVersion = majorVersion;
|
||||
|
||||
inherit majorVersion version src patches buildInputs preConfigure;
|
||||
|
||||
|
@ -55,6 +55,7 @@ let
|
||||
# external dependencies.
|
||||
python = stdenv.mkDerivation {
|
||||
name = "python-${version}";
|
||||
pythonVersion = majorVersion;
|
||||
|
||||
inherit majorVersion version src patches buildInputs preConfigure;
|
||||
|
||||
|
@ -27,6 +27,7 @@ let
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "python3-${version}";
|
||||
pythonVersion = majorVersion;
|
||||
inherit majorVersion version;
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -20,6 +20,7 @@ with stdenv.lib;
|
||||
|
||||
let
|
||||
majorVersion = "3.3";
|
||||
pythonVersion = majorVersion;
|
||||
version = "${majorVersion}.6";
|
||||
|
||||
buildInputs = filter (p: p != null) [
|
||||
@ -28,6 +29,7 @@ let
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "python3-${version}";
|
||||
pythonVersion = majorVersion;
|
||||
inherit majorVersion version;
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -20,6 +20,7 @@ with stdenv.lib;
|
||||
|
||||
let
|
||||
majorVersion = "3.4";
|
||||
pythonVersion = majorVersion;
|
||||
version = "${majorVersion}.2";
|
||||
fullVersion = "${version}";
|
||||
|
||||
@ -29,6 +30,7 @@ let
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "python3-${fullVersion}";
|
||||
pythonVersion = majorVersion;
|
||||
inherit majorVersion version;
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -3,6 +3,8 @@
|
||||
with pkgs.lib;
|
||||
|
||||
let
|
||||
pythonAtLeast = versionAtLeast python.pythonVersion;
|
||||
pythonOlder = versionOlder python.pythonVersion;
|
||||
isPy26 = python.majorVersion == "2.6";
|
||||
isPy27 = python.majorVersion == "2.7";
|
||||
isPy33 = python.majorVersion == "3.3";
|
||||
@ -2992,11 +2994,14 @@ let
|
||||
};
|
||||
|
||||
pew = buildPythonPackage rec {
|
||||
name = "pew-0.1.9";
|
||||
name = "pew-0.1.14";
|
||||
namePrefix = "";
|
||||
|
||||
disabled = pythonOlder "3.4"; # old versions require backported libraries
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pew/${name}.tar.gz";
|
||||
md5 = "90a82400074b50a9e73c3045ed9ac217";
|
||||
md5 = "0a06ab0885b39f1ef3890893942f3225";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ virtualenv virtualenv-clone ];
|
||||
@ -3005,6 +3010,7 @@ let
|
||||
description = "Tools to manage multiple virtualenvs written in pure python, a virtualenvwrapper rewrite";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.berdario ];
|
||||
};
|
||||
};
|
||||
|
||||
@ -10982,11 +10988,11 @@ let
|
||||
};
|
||||
|
||||
virtualenv-clone = buildPythonPackage rec {
|
||||
name = "virtualenv-clone-0.2.4";
|
||||
name = "virtualenv-clone-0.2.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/v/virtualenv-clone/${name}.tar.gz";
|
||||
md5 = "71168b975eaaa91e65559bcc79290b3b";
|
||||
md5 = "23e71d255058b2543d839af7f4ce3208";
|
||||
};
|
||||
|
||||
buildInputs = with self; [pytest];
|
||||
|
Loading…
Reference in New Issue
Block a user