mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 12:19:12 +00:00
swh-model: init at 6.3.1
This commit is contained in:
parent
76f41087cb
commit
51075f34cb
34
pkgs/software-heritage/swh-model.nix
Normal file
34
pkgs/software-heritage/swh-model.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, lib, python3Packages, attrs-strict, swh-core, ... }:
|
||||
|
||||
with python3Packages;
|
||||
buildPythonPackage rec {
|
||||
pname = "swh-model";
|
||||
version = "6.3.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "swh.model";
|
||||
sha256 = "sha256-9bORvIz5hCTZ+MDOY7mLViax7MkKjLq333EtINs+BjI=";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
dulwich
|
||||
deprecated
|
||||
typing-extensions
|
||||
hypothesis
|
||||
iso8601
|
||||
dateutil
|
||||
attrs
|
||||
attrs-strict
|
||||
|
||||
swh-core
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Software Heritage filesystem";
|
||||
homepage = "https://www.softwareheritage.org/";
|
||||
license = licenses.gpl3Only;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user