nixpkgs/pkgs/development/python-modules/openstep-plist/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

32 lines
765 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pytestCheckHook
, cython
, pythonImportsCheckHook
}:
buildPythonPackage rec {
pname = "openstep-plist";
version = "0.3.0.post1";
src = fetchPypi {
pname = "openstep_plist";
inherit version;
hash = "sha256-GK/z1e3tnr++3+ukRKPASDJGl7+KObsENhwN1Tv+qws=";
extension = "zip";
};
nativeBuildInputs = [ setuptools-scm cython ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "openstep_plist" ];
meta = {
description = "Parser for the 'old style' OpenStep property list format also known as ASCII plist";
homepage = "https://github.com/fonttools/openstep-plist";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.BarinovMaxim ];
};
}