python.pkgs.scikits-odes: 2.4.0-9-g93075ae -> 2.6.1

This commit is contained in:
Florian Klink 2020-02-19 15:38:11 +01:00
parent 301c706f77
commit 712fba5191
1 changed files with 5 additions and 8 deletions

View File

@ -1,7 +1,7 @@
{ stdenv { stdenv
, lib , lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchPypi
, fetchurl , fetchurl
, cython , cython
, enum34 , enum34
@ -16,14 +16,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "scikits.odes"; pname = "scikits.odes";
version = "2.4.0-9-g93075ae"; version = "2.6.1";
# we fetch github instead of Pypi, as we want #104 and #105, which don't apply cleanly on 2.4.0 src = fetchPypi {
src = fetchFromGitHub { inherit pname version;
owner = "bmcage"; sha256 = "0kbf2n16h9s35x6pavlx6sff0pqr68i0x0609z92a4vadni32n6b";
repo = "odes";
rev = "93075ae25c409f572f13ca7207fada5706f73c73";
sha256 = "161rab7hy6r1a9xw1zby9xhnnmxi0zwdpzxfpjkw9651xn2k5xyw";
}; };
nativeBuildInputs = [ nativeBuildInputs = [