depot/third_party/nixpkgs/pkgs/development/python-modules/effect/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

47 lines
878 B
Nix

{
lib,
attrs,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
six,
testtools,
}:
buildPythonPackage rec {
pname = "effect";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ev+2A3B8ZIsHsReB67eTpLmu6KzxrFdkw+0hEq3wyeo=";
};
postPatch = ''
substituteInPlace effect/test_do.py \
--replace "py.test" "pytest"
'';
propagatedBuildInputs = [
attrs
six
];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ testtools ];
pythonImportsCheck = [ "effect" ];
meta = with lib; {
description = "Pure effects for Python";
homepage = "https://effect.readthedocs.io/";
changelog = "https://github.com/python-effect/effect/releases/tag/${version}";
license = licenses.mit;
maintainers = [ ];
};
}