Files
nixpkgs/pkgs/development/python-modules/viewstate/default.nix
2025-05-25 04:04:53 +02:00

34 lines
639 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "viewstate";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "yuvadm";
repo = "viewstate";
tag = "v${version}";
sha256 = "sha256-cXT5niE3rNdqmNqnITWy9c9/MF0gZ6LU2i1uzfOzkUI=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = ".NET viewstate decoder";
homepage = "https://github.com/yuvadm/viewstate";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kamadorueda ];
};
}