repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
tools
/
pypi2nix
/
default.nix
blob
04d61995d3f7af3b32bca3829562f714947fe5a2
1
{ python3
2
}:
3
with python3;
4
5
pkgs.buildPythonApplication rec {
6
pname = "pypi2nix";
7
version = "2.0.4";
8
src = pkgs.fetchPypi {
9
inherit pname version;
10
sha256 = "0y4zkkcijz5hchd8j6a106ysrg1dnad7dzdgnmz38rgm6zbrky0d";
11
};
12
propagatedBuildInputs = with pkgs; [
13
attrs
14
click
15
jinja2
16
nix-prefetch-github
17
packaging
18
parsley
19
setuptools
20
toml
21
jsonschema
22
];
23
# https://github.com/nix-community/pypi2nix/issues/460
24
meta.broken = true;
25
}