tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.asn1tools: 0.163.0 -> 0.164.0
Fabian Affolter
3 years ago
6ccadbb8
12f74551
+10
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
asn1tools
default.nix
+10
-4
pkgs/development/python-modules/asn1tools/default.nix
···
6
, prompt-toolkit
7
, pyparsing
8
, python
0
9
}:
10
11
buildPythonPackage rec {
12
pname = "asn1tools";
13
-
version = "0.163.0";
0
0
0
14
15
src = fetchFromGitHub {
16
owner = "eerimoq";
17
repo = "asn1tools";
18
-
rev = "v${version}";
19
-
sha256 = "sha256-sbwwbwkhlZvCb2emuw1FTBj5pnv9SOtHpAcYPSQqIvM=";
20
};
21
22
propagatedBuildInputs = [
···
30
${python.interpreter} setup.py test
31
'';
32
33
-
pythonImportsCheck = [ "asn1tools" ];
0
0
34
35
meta = with lib; {
36
description = "ASN.1 parsing, encoding and decoding";
···
6
, prompt-toolkit
7
, pyparsing
8
, python
9
+
, pythonOlder
10
}:
11
12
buildPythonPackage rec {
13
pname = "asn1tools";
14
+
version = "0.164.0";
15
+
format = "setuptools";
16
+
17
+
disabled = pythonOlder "3.8";
18
19
src = fetchFromGitHub {
20
owner = "eerimoq";
21
repo = "asn1tools";
22
+
rev = version;
23
+
hash= "sha256-sbwwbwkhlZvCb2emuw1FTBj5pnv9SOtHpAcYPSQqIvM=";
24
};
25
26
propagatedBuildInputs = [
···
34
${python.interpreter} setup.py test
35
'';
36
37
+
pythonImportsCheck = [
38
+
"asn1tools"
39
+
];
40
41
meta = with lib; {
42
description = "ASN.1 parsing, encoding and decoding";