tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python.pkgs.trustme: fix python2 build
Orivej Desh
7 years ago
1c7acb09
6db9f468
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
trustme
default.nix
+3
-1
pkgs/development/python-modules/trustme/default.nix
···
1
-
{ lib, buildPythonPackage, fetchPypi, cryptography, pytest, pyopenssl, service-identity }:
2
3
buildPythonPackage rec {
4
pname = "trustme";
···
15
'';
16
propagatedBuildInputs = [
17
cryptography
0
0
18
];
19
20
meta = {
···
1
+
{ lib, buildPythonPackage, fetchPypi, isPy3k, cryptography, futures, pytest, pyopenssl, service-identity }:
2
3
buildPythonPackage rec {
4
pname = "trustme";
···
15
'';
16
propagatedBuildInputs = [
17
cryptography
18
+
] ++ lib.optionals (!isPy3k) [
19
+
futures
20
];
21
22
meta = {