depot/third_party/nixpkgs/pkgs/development/python-modules/memestra/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

43 lines
788 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
beniget,
frilouz,
gast,
nbconvert,
nbformat,
pyyaml,
}:
buildPythonPackage rec {
pname = "memestra";
version = "0.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-6shwf9BoDfZMy0itP8esNP4ov6fw6LJpO3Y5ZahwDZw=";
};
propagatedBuildInputs = [
gast
beniget
frilouz
nbconvert
nbformat
pyyaml
];
# Tests are not detected and so the checkPhase fails
doCheck = false;
pythonImportsCheck = [ "memestra" ];
meta = with lib; {
description = "Linter that tracks reference to deprecated functions";
homepage = "https://github.com/QuantStack/memestra";
license = licenses.bsd3;
maintainers = with maintainers; [ GaetanLepage ];
};
}