Merge pull request #36328 from makefu/pkgs/pytest-mock/fix

pythonPackages.pytest-mock: 1.7.0 -> 1.7.1
This commit is contained in:
Jörg Thalheim 2018-03-05 09:40:11 +00:00 committed by GitHub
commit bc53cfb2d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "pytest-mock";
version = "1.7.0";
version = "1.7.1";
src = fetchPypi {
inherit pname version;
sha256 = "8ed6c9ac6b7565b226b4da2da48876c9198d76401ec8d9c5e4c69b45423e33f8";
sha256 = "0jgr1h1f0m9dl3alxiiw55as28pj2lpihz12gird9z1i3vvdyydq";
};
propagatedBuildInputs = [ pytest ] ++ lib.optional (!isPy3k) mock;