Merge pull request #57424 from r-ryantm/auto-update/python3.7-munkres

python37Packages.munkres: 1.0.12 -> 1.1.2
This commit is contained in:
Robert Schütz 2019-03-23 00:11:40 +01:00 committed by GitHub
commit b9bd965de2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,19 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchPypi
, isPy3k
, nose , nose
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "munkres"; pname = "munkres";
version = "1.0.12"; version = "1.1.2";
# No sdist for 1.0.12, see https://github.com/bmc/munkres/issues/25 disabled = !isPy3k;
src = fetchFromGitHub {
owner = "bmc"; src = fetchPypi {
repo = pname; inherit pname version;
rev = "release-${version}"; sha256 = "81e9ced40c3d0ffc48be4b6da5cfdfaa49041faaaba8075b159974ec47926aea";
sha256 = "0m3rkn0z3ialndxmyg26xn081znna34i5maa1i4nkhy6nf0ixdjm";
}; };
checkInputs = [ nose ]; checkInputs = [ nose ];