tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.fpylll: 0.5.7 -> 0.5.9
Mauricio Collares
3 years ago
b35c20fb
fab09085
+2
-11
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
fpylll
default.nix
+2
-11
pkgs/development/python-modules/fpylll/default.nix
···
1
1
{ stdenv
2
2
, lib
3
3
, fetchFromGitHub
4
4
-
, fetchpatch
5
4
, buildPythonPackage
6
5
, pkgconfig
7
6
, gmp
···
16
15
17
16
buildPythonPackage rec {
18
17
pname = "fpylll";
19
19
-
version = "0.5.7";
18
18
+
version = "0.5.9";
20
19
21
20
src = fetchFromGitHub {
22
21
owner = "fplll";
23
22
repo = "fpylll";
24
23
rev = version;
25
25
-
sha256 = "sha256-iUPreJ8BSB8LDisbJis0xn8ld6+Nf9Z4AP8SWJlCfZg=";
24
24
+
sha256 = "sha256-T6l6hKzRDevlLyLu5H+bnEdl0OhsPer1coCDiftbPAk=";
26
25
};
27
27
-
28
28
-
patches = [
29
29
-
(fetchpatch {
30
30
-
name = "remove-strategies-doctest.patch";
31
31
-
url = "https://github.com/fplll/fpylll/commit/3edffcd189e9d827a322d83b0f84d32e5f067442.patch";
32
32
-
sha256 = "sha256-U7qOIbVzUNwYmjOPryjnE3J+MX/vMwm3T0UyOZ5ylLc=";
33
33
-
})
34
34
-
];
35
26
36
27
buildInputs = [
37
28
gmp