tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
coconut: 1.6.0 → 2.1.0
Fabián Heredia Montiel
3 years ago
865fdea4
432e5e65
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
coconut
default.nix
+3
-3
pkgs/development/python-modules/coconut/default.nix
reviewed
···
14
14
15
15
buildPythonPackage rec {
16
16
pname = "coconut";
17
17
-
version = "1.6.0";
17
17
+
version = "2.1.0";
18
18
19
19
src = fetchFromGitHub {
20
20
owner = "evhub";
21
21
repo = "coconut";
22
22
rev = "v${version}";
23
23
-
sha256 = "/397YGV6QWWmKfqr5hSvqRoPOu7Hx1Pak6rVPR3etzw=";
23
23
+
sha256 = "sha256-TkMwOE/Jug1zKjR1048o/Jmn8o9/oQPNqzwXYakwpgs=";
24
24
};
25
25
26
26
propagatedBuildInputs = [ cpyparsing ipykernel mypy pygments prompt-toolkit watchdog ];
···
29
29
30
30
# Currently most tests have performance issues
31
31
pytestFlagsArray = [
32
32
-
"tests/constants_test.py"
32
32
+
"coconut/tests/constants_test.py"
33
33
];
34
34
35
35
pythonImportsCheck = [ "coconut" ];