mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
swh-web-client: init at 0.5.0
This commit is contained in:
parent
062a481376
commit
54e03461ae
30
pkgs/software-heritage/swh-web-client.nix
Normal file
30
pkgs/software-heritage/swh-web-client.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib, python3Packages, swh-core, swh-model, swh-auth, ... }:
|
||||
|
||||
with python3Packages;
|
||||
buildPythonPackage rec {
|
||||
pname = "swh-web-client";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "swh.web.client";
|
||||
sha256 = "sha256-TC3KMMf2lpZA9DuwViu1Osb07eT25K+LyS49jeNZVwA=";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
click
|
||||
requests
|
||||
|
||||
swh-core
|
||||
swh-model
|
||||
swh-auth
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Software Heritage web client";
|
||||
homepage = "https://forge.softwareheritage.org/source/swh-web-client/";
|
||||
license = licenses.gpl3Only;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user