Initial commit

This commit is contained in:
ef 2024-09-30 20:24:21 +02:00
commit ad9e6ed2d7
2 changed files with 63 additions and 0 deletions

27
flake.lock Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1727540905,
"narHash": "sha256-40J9tW7Y794J7Uw4GwcAKlMxlX2xISBl6IBigo83ih8=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "fbca5e745367ae7632731639de5c21f29c8744ed",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-24.05",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

36
flake.nix Normal file
View file

@ -0,0 +1,36 @@
{
description = "pyDataverse python package";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
packages.x86_64-linux.pyDataverse = let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
pkgs.python3Packages.buildPythonPackage rec {
pname = "pyDataverse";
version = "0.3.4";
src = pkgs.fetchFromGitHub {
owner = "gdcc";
repo = "pyDataverse";
rev = "v0.3.4";
hash = "sha256-YyIN4PNEhPOwMHjD4rg0PljSj7BZAYlT0g2Ll1V8xHk=";
};
format = "pyproject";
propagatedBuildInputs = with pkgs.python3Packages; [
requests
jsonschema
poetry-core
httpx
];
};
packages.x86_64-linux.default = self.packages.x86_64-linux.pyDataverse;
};
}