nixpkgs/pkgs/development/python-modules/skein/default.nix

41 lines
970 B
Nix
Raw Normal View History

{ buildPythonPackage
, callPackage
2020-05-20 11:15:56 +01:00
, fetchPypi
, isPy27
2020-05-20 11:15:56 +01:00
, jre
, lib
, pythonPackages
2020-05-20 11:15:56 +01:00
}:
let
2020-05-20 11:15:56 +01:00
pname = "skein";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "0nb64p1hzshgi1kfc2jx1v9vn8b0wzs50460wfra3fsxh0ap66ab";
};
skeinJar = callPackage ./skeinjar.nix { inherit src version; };
in
buildPythonPackage rec {
inherit pname version src;
disabled = isPy27;
2020-05-20 11:15:56 +01:00
propagatedBuildInputs = with pythonPackages; [ cryptography grpcio grpcio-tools jupyter pytest pyyaml requests jre ];
preBuild = ''
# Ensure skein.jar exists skips the maven build in setup.py
2020-05-20 11:15:56 +01:00
mkdir -p skein/java
ln -s ${skeinJar} skein/java/skein.jar
'';
meta = with lib; {
2020-05-20 11:15:56 +01:00
homepage = "https://jcristharif.com/skein";
description = "A tool and library for easily deploying applications on Apache YARN";
license = licenses.bsd3;
2020-05-29 06:35:25 +01:00
maintainers = with maintainers; [ alexbiehl ];
broken = true; # maven repo src isn't stable
2020-05-20 11:15:56 +01:00
};
}