Merge pull request #54076 from r-ryantm/auto-update/python3.7-sortedcollections

python37Packages.sortedcollections: 1.0.1 -> 1.1.2
This commit is contained in:
worldofpeace 2019-01-16 19:54:39 +00:00 committed by GitHub
commit 5d8cd714c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,16 +6,16 @@
buildPythonPackage rec {
pname = "sortedcollections";
version = "1.0.1";
version = "1.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "12q1gf81l53mv634hk259aql69k9572nfv5gsn8gxlywdly2z63b";
sha256 = "12nkw69lnyvh9wy6rsd0ng4bcia81vkhj1rj1kj1k3vzppn0sgmr";
};
buildInputs = [ sortedcontainers ];
propagatedBuildInputs = [ sortedcontainers ];
# wants to test all python versions with tox:
# No tests in PyPi tarball
doCheck = false;
meta = with stdenv.lib; {