depot/third_party/nixpkgs/pkgs/development/python-modules/vine/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

36 lines
613 B
Nix

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