mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 05:16:25 +03:00
python3Packages.tinytag: 1.10.4 -> 2.0.0 (#367456)
This commit is contained in:
commit
c0cb67536b
1 changed files with 7 additions and 3 deletions
|
@ -3,22 +3,26 @@
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
setuptools,
|
setuptools,
|
||||||
|
flit-core,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tinytag";
|
pname = "tinytag";
|
||||||
version = "1.10.1";
|
version = "2.0.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tinytag";
|
owner = "tinytag";
|
||||||
repo = "tinytag";
|
repo = "tinytag";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-Kg67EwDIi/Io7KKnNiqPzQKginrfuE6FAeOCjFgEJkY=";
|
hash = "sha256-HSDEsyM9jGmS0o/EQj0GS/Ur4aepFgv8VpVNoJTyZGA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [
|
||||||
|
setuptools
|
||||||
|
flit-core
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "tinytag" ];
|
pythonImportsCheck = [ "tinytag" ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue