lol

python310Packages.ecos: 2.0.10 -> 2.0.11

Diff: https://github.com/embotech/ecos-python.git/compare/refs/tags/v2.0.10...v2.0.11

+4 -14
+4 -14
pkgs/development/python-modules/ecos/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , nose 6 5 , numpy 7 6 , pythonOlder ··· 10 9 11 10 buildPythonPackage rec { 12 11 pname = "ecos"; 13 - version = "2.0.10"; 12 + version = "2.0.11"; 14 13 format = "setuptools"; 15 14 16 15 disabled = pythonOlder "3.6"; ··· 18 17 src = fetchFromGitHub { 19 18 owner = "embotech"; 20 19 repo = "ecos-python"; 21 - rev = "v${version}"; 22 - hash = "sha256-TPxrTyVZ1KXgPoDbZZqXT5+NEIEndg9qepujqFQwK+Q="; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-jflmXR7fuGRSyI6NoQrHFvkKqF/D4iq47StNSCdLbqQ="; 23 22 fetchSubmodules = true; 24 23 }; 25 24 26 - patches = [ 27 - # Fix for test_interface_bb.py tests 28 - (fetchpatch { 29 - name = "test_interface_bb_use_nparray.patch"; 30 - url = "https://github.com/embotech/ecos-python/commit/4440dcb7ddbd92217bc83d8916b72b61537dffbf.patch"; 31 - hash = "sha256-pcTPviK916jzCLllRhopbC9wDHv+aS6GmV/92sUwzHc="; 32 - }) 33 - ]; 34 - 35 25 propagatedBuildInputs = [ 36 26 numpy 37 27 scipy ··· 51 41 ]; 52 42 53 43 meta = with lib; { 54 - description = "Python package for ECOS: Embedded Cone Solver"; 44 + description = "Python interface for ECOS"; 55 45 homepage = "https://github.com/embotech/ecos-python"; 56 46 license = licenses.gpl3Only; 57 47 maintainers = with maintainers; [ drewrisinger ];