mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +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,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
flit-core,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tinytag";
|
||||
version = "1.10.1";
|
||||
version = "2.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tinytag";
|
||||
repo = "tinytag";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-Kg67EwDIi/Io7KKnNiqPzQKginrfuE6FAeOCjFgEJkY=";
|
||||
hash = "sha256-HSDEsyM9jGmS0o/EQj0GS/Ur4aepFgv8VpVNoJTyZGA=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
build-system = [
|
||||
setuptools
|
||||
flit-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "tinytag" ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue