depot/third_party/nixpkgs/pkgs/development/python-modules/vine/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

37 lines
688 B
Nix

{ lib
, buildPythonPackage
, case
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "vine";
version = "5.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-i2LpgdNcQQSSEc9ioKEkLYwe6b0Vuxls44rv1nmeYeA=";
};
nativeCheckInputs = [
case
pytestCheckHook
];
pythonImportsCheck = [
"vine"
];
meta = with lib; {
description = "Python promises";
homepage = "https://github.com/celery/vine";
changelog = "https://github.com/celery/vine/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}