depot/third_party/nixpkgs/pkgs/development/python-modules/commoncode/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

55 lines
940 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, setuptools-scm
, click
, requests
, attrs
, intbitset
, saneyaml
, text-unidecode
, beautifulsoup4
, pytestCheckHook
, pytest-xdist
}:
buildPythonPackage rec {
pname = "commoncode";
version = "21.6.11";
src = fetchPypi {
inherit pname version;
sha256 = "d6c8c985746a541913d5bb534c770f2422e5b4ac7a4ef765abc05c287a40ff4b";
};
dontConfigure = true;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
click
requests
attrs
intbitset
saneyaml
text-unidecode
beautifulsoup4
];
checkInputs = [
pytestCheckHook
pytest-xdist
];
pythonImportsCheck = [
"commoncode"
];
meta = with lib; {
description = "A set of common utilities, originally split from ScanCode";
homepage = "https://github.com/nexB/commoncode";
license = licenses.asl20;
maintainers = teams.determinatesystems.members;
};
}