02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
569 B
Nix
23 lines
569 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pyparsing }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asn1ate";
|
|
format = "setuptools";
|
|
version= "0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1p8hv4gsyqsdr0gafcq497n52pybiqmc22di8ai4nsj60fv0km45";
|
|
rev = "v${version}";
|
|
owner = "kimgr";
|
|
repo = pname;
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyparsing ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for translating ASN.1 into other forms";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ leenaars ];
|
|
};
|
|
}
|