python.pkgs: updates

This commit is contained in:
Frederik Rietdijk
2017-10-25 20:04:35 +02:00
parent b601d87cd6
commit 7ce848309e
133 changed files with 366 additions and 294 deletions

View File

@@ -1,16 +1,18 @@
{ stdenv, fetchurl, buildPythonPackage, pip, pytest, click, six, first, setuptools_scm, glibcLocales }:
{ stdenv, fetchurl, buildPythonPackage, pip, pytest, click, six, first
, setuptools_scm, glibcLocales, mock }:
buildPythonPackage rec {
pname = "pip-tools";
version = "1.9.0";
version = "1.10.1";
name = "pip-tools-${version}";
src = fetchurl {
url = "mirror://pypi/p/pip-tools/${name}.tar.gz";
sha256 = "0mjdpq2zjn8n4lzn9l2myh4bv0l2f6751k1rdpgdm8k3fargw1h7";
sha256 = "37b85d69ceed97337aeefb3e52e41fe0884a505c874757a5bbaa58d92b533ce0";
};
LC_ALL = "en_US.UTF-8";
buildInputs = [ pytest glibcLocales ];
checkInputs = [ pytest glibcLocales mock ];
propagatedBuildInputs = [ pip click six first setuptools_scm ];
checkPhase = ''