depot/third_party/nixpkgs/pkgs/development/python-modules/construct-classes/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
816 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
construct,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "construct-classes";
version = "0.1.2";
format = "pyproject";
# no tests in PyPI tarball
src = fetchFromGitHub {
owner = "matejcik";
repo = "construct-classes";
rev = "v${version}";
hash = "sha256-l4sVacKTuQbhXCw2lVHCl1OzpCiKmEAm9nSQ8pxFuTo=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ construct ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "construct_classes" ];
meta = with lib; {
description = "Parse your binary data into dataclasses";
homepage = "https://github.com/matejcik/construct-classes";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}