blob: b42703cb038a7629334c18df270303811f3222ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "viewstate";
version = "0.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "yuvadm";
repo = "viewstate";
tag = "v${version}";
sha256 = "sha256-fvqz03rKkA2WVVXU74eo0otnuRseE83cv6pw3rMso34=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = ".NET viewstate decoder";
homepage = "https://github.com/yuvadm/viewstate";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kamadorueda ];
};
}
|