nixpkgs/pkgs/development/python-modules/pydantic/default.nix

49 lines
838 B
Nix
Raw Normal View History

2019-07-25 22:26:49 +01:00
{ lib
, buildPythonPackage
, fetchFromGitHub
2019-07-25 22:26:49 +01:00
, ujson
, email_validator
, typing-extensions
, python
, isPy3k
, pytest
, pytestcov
, pytest-mock
2019-07-25 22:26:49 +01:00
}:
buildPythonPackage rec {
pname = "pydantic";
version = "1.7.3";
2019-07-25 22:26:49 +01:00
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "samuelcolvin";
repo = pname;
rev = "v${version}";
sha256 = "xihEDmly0vprmA+VdeCoGXg9PjWRPmBWAwk/9f2DLts=";
2019-07-25 22:26:49 +01:00
};
propagatedBuildInputs = [
ujson
email_validator
typing-extensions
];
checkInputs = [
pytest
pytestcov
pytest-mock
];
2019-07-25 22:26:49 +01:00
checkPhase = ''
pytest
2019-07-25 22:26:49 +01:00
'';
meta = with lib; {
homepage = "https://github.com/samuelcolvin/pydantic";
description = "Data validation and settings management using Python type hinting";
license = licenses.mit;
maintainers = with maintainers; [ wd15 ];
};
}