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
Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
skein
/
skeinjar.nix
blob
1cec80fa93330eddaaeeb3db789d58862e538b73
1
{ fetchPypi, unzip, stdenv, pname, version, jarHash }:
2
3
stdenv.mkDerivation rec {
4
inherit pname version;
5
6
src = fetchPypi {
7
inherit pname version;
8
format = "wheel";
9
python = "py3";
10
dist = "py3";
11
hash = jarHash;
12
};
13
14
dontUnpack = true;
15
16
nativeBuildInputs = [ unzip ];
17
18
installPhase = ''
19
unzip ${src}
20
install -D ./skein/java/skein.jar $out
21
'';
22
}