depot/third_party/nixpkgs/pkgs/development/python-modules/klein/default.nix
Default email ca5ab3a501 Project import generated by Copybara.
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
2022-07-14 08:49:19 -04:00

64 lines
1.1 KiB
Nix

{ lib
, stdenv
, attrs
, buildPythonPackage
, fetchFromGitHub
, hyperlink
, hypothesis
, incremental
, python
, pythonOlder
, treq
, tubes
, twisted
, typing-extensions
, werkzeug
, zope_interface
}:
buildPythonPackage rec {
pname = "klein";
version = "unstable-2022-06-26";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "twisted";
repo = pname;
rev = "d8c2b92a3c77aa64c596696fb6f07172ecf94a74";
hash = "sha256-RDZqavkteUbARV78OctZtLIrE4RoYDVAanjwE5i/ZeM=";
};
propagatedBuildInputs = [
attrs
hyperlink
incremental
twisted
tubes
werkzeug
zope_interface
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
checkInputs = [
hypothesis
treq
];
checkPhase = ''
${python.interpreter} -m twisted.trial -j $NIX_BUILD_CORES klein
'';
pythonImportsCheck = [
"klein"
];
meta = with lib; {
description = "Klein Web Micro-Framework";
homepage = "https://github.com/twisted/klein";
license = licenses.mit;
maintainers = with maintainers; [ exarkun ];
};
}