depot/third_party/nixpkgs/pkgs/development/python-modules/cattrs/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

35 lines
679 B
Nix

{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, hypothesis
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cattrs";
version = "1.1.2";
src = fetchFromGitHub {
owner = "Tinche";
repo = pname;
rev = "v${version}";
sha256 = "083d5mi6x7qcl26wlvwwn7gsp5chxlxkh4rp3a41w8cfwwr3h6l8";
};
propagatedBuildInputs = [ attrs ];
checkInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "cattr" ];
meta = with lib; {
description = "Python custom class converters for attrs";
homepage = "https://github.com/Tinche/cattrs";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}